html{
    padding: 0;
    /* margin: 0; put in container */ 
    /* box-sizing: border-box; put in container */
    font-family: 'Quicksand', sans-serif;
    font-optical-sizing: auto;

    font-style: normal;
}



.main_contact {

    margin-top: 5rem;
    /* font-size: 22px; */


    
}

.contact-container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 10px 50px;

    margin: 0;
    box-sizing: border-box;

}

.contact-container::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* background:  rgb(173, 191, 157) no-repeat center; */
    background-size: cover;
    z-index: -1;
    filter: blur(50px);

}

.contact-box{
    max-width: 1920px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgba(203, 221, 209, 1);
    box-shadow: 1px 9px 19px 10px rgba(0,0,0,0.19);
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;

}

.left {
    height: 100%;
    background: url(bg.png) no-repeat center;
    background-size: contain; /* or cover */
    border: 1.1px solid white;
    border-top-left-radius: 10px;

    box-shadow: 0px 4px 19px 0px rgba(0,0,0,0.19);


}

.right{
    padding: 25px 40px;
    border-bottom: 1px solid white;
    border-right: 1px solid white;
    border-bottom-right-radius: 10px;
}

h2{
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;

}

h2:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 4px;
    width: 100%;
    border-radius: 2px;
    background-color: #2e48ccc4;


}

.field{
    width: 100%;


    padding: .5rem 0rem;
    /*acting weird*/



    outline: none;
    border: 2px solid rgba(0,0,0,0);
    background-color: rgba(230, 230, 230, 0.894);
    font-size: 1.1rem;
    margin-bottom: 22px;
    transition: .3s;

}

.field:hover{
    background-color: #2e48ccc4;

}

::placeholder:hover{
    color: whitesmoke;
    opacity: 1;
}

.field:focus{
    background-color: #fff;
    border: 2px solid rgba(30, 85, 250, 0.47);

}

.area{
    min-height: 150px;
    resize: none;


}

.btn{
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
    background-color: #2e48ccc4;
    cursor: pointer;
    outline: none;
    border: none;
    color: #fff;
    transition: .3s;


}

.btn:hover {
    background-color: #000000;
}

@media screen and (max-width:1081px){
    .contact-box{
        grid-template-columns: 1fr;
    }
    .left {
        height: 400px;
    }
}